home *** CD-ROM | disk | FTP | other *** search
/ Artbeats: WebTools / Artbeats WebTools.iso / mac / Start! / Start!.DXR / 00001_start.ls next >
Encoding:
Text File  |  1996-02-29  |  477 b   |  25 lines

  1. on exitFrame
  2.   global oldDepth
  3.   if the machineType = 256 then
  4.     if the colorDepth < 8 then
  5.       go("WinSetup")
  6.       if not (the quickTimePresent) then
  7.         go("NoQT")
  8.       end if
  9.     end if
  10.   else
  11.     if (the colorDepth <> 8) and not optionDown() then
  12.       set oldDepth to the colorDepth
  13.       set the colorDepth to 8
  14.     end if
  15.     if not (the quickTimePresent) then
  16.       go("NoQT")
  17.     end if
  18.   end if
  19.   set the stageColor to 0
  20. end
  21.  
  22. on keyDown
  23.   go(marker(1))
  24. end
  25.